#########################################################################################################
#                                  IP Architechs Lab Examples                                           #
#########################################################################################################
# Author: Rick Frey                                                                                     #
# email: consulting@iparchitechs.com                                                                    #
# www.iparchitechs.com  1-855-MikroTik                                                                  #
#########################################################################################################
#########################################################################################################
#                                  Internet Router Intial Config                                        #            
#########################################################################################################
#########################################################################################################
#                                     Applies to ROS 6.7+                                               #            
#########################################################################################################

/interface ethernet
set [ find default-name=ether1 ] comment="Facing VM Network" speed=1Gbps
set [ find default-name=ether2 ] comment="Facing PC Network" speed=1Gbps

/ip address
add address=111.111.111.1/30 interface=ether1 network=111.111.111.0

/ip route
add distance=1 dst-address=222.222.222.0/27 gateway=111.111.111.2

/system identity
set name=Internet_Router

